 *{ 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;


body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #5a189a, #9d4edd, #c77dff);
    padding: 20px;
}

.container {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    width: 80%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

img {
    max-width: 350px;
    float: left;
    border-radius: 10px;
    border: 3px solid rgba(255, 255, 255, 0.6);
    margin-right: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.text h1 {
    color: white;
    font-size: 48px;
    margin-bottom: 10px;
}

.text h2 {
    color: #f0dfff;
    font-size: 32px;
    margin-bottom: 20px;
}

.text p {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.5;
}

button {
    background: linear-gradient(135deg, #7209b7, #560bad);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#gallery {
    margin-top: 20px;
}

#gallery img {
    width: 200px;
    margin: 10px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hidden {
    display: none;
}
